home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ NAV 2000 on Boot.xpl < prev    next >
Text File  |  2001-04-12  |  2KB  |  56 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Run on Next Boot"
  5. "NAME"="Run Norton AV 2000 Scan on Next Boot"
  6. "VERSION"="2.03"
  7. "OSVERSION"="111111"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Run AV 2001 Scan on Next Boot"
  10. "DESCRIPTION 1"="Often the Norton antivirus scan operation is slowed down considerably by other disk/program activity."
  11. "DESCRIPTION 2"="Checking the box will cause NAV 2000 to start on Bootup; if NAV 2001 scan is not desired on boot, it may be stopped after boot."
  12. "DESCRIPTION 3"="NOTE: This plugin is designed to run only on the next restart; whenever you want to scan with NAV 2001 on boot, re-apply the plugin.  This plug-in is for the GUI version of NAV 2000."
  13. "AUTHOR"="CptSiskoX"
  14. "CONTACTURL"="http://members.fortunecity.com/computingx/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19. sP="HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx\"
  20. sV1="NAV 2000\"
  21. v="Title" 'Stg
  22. v1="Flags" 'Dwrd
  23. v2="Cmd" 'Stg
  24.  
  25.  
  26. Sub Plugin_Initialize 
  27. End Sub
  28.  
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  
  35.   if ElementIndex=1 then
  36.      Call RegWriteValue(sP&v,"NAV Scan on Startup",1)
  37.      Call RegWriteValue(sP&v1,"3",2)
  38.    
  39.      if GetWinVer=1 or GetWinVer=3 or GetWinVer=5 then
  40.         Call RegWriteValue(sp&sv1&v2,"NAVW32 /L",1)
  41.      else
  42.         'NT/W2K
  43.         Call RegWriteValue(sp&sv1&v2,"NAVWNT /L",1)
  44.      end if
  45.  
  46.      Call Restart()
  47.   end if
  48. End Sub
  49.  
  50. Sub Plugin_Terminate 
  51. End Sub
  52.  
  53.  
  54.  
  55.  
  56.